home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / littelcomp / r5 / lc / examples / test.l < prev    next >
Text File  |  2000-02-28  |  434b  |  19 lines

  1. //   test our test.library if it can handle //
  2. //   stackbased %params ..                  //
  3.  
  4. #include "test_lib.i"
  5.  
  6. // All global stuff must be named with '_' in beginning! //
  7. STRING _testname "littel:dev/test.library"
  8. GVAR   _TestBase
  9.  
  10. PROC main
  11.    CODESTART
  12.    openlibrary  _testname 0 _TestBase
  13.    call _TestBase Delay100
  14.    closelibrary _TestBase
  15. ENDPROC
  16. END
  17.                        // yep! it worked! //
  18.                        
  19.